home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / pcw.zip / QBLKDEMO.C < prev    next >
Text File  |  1990-01-30  |  368b  |  14 lines

  1. #include <stdio.h>
  2. #include "pcwproto.h"
  3.  
  4.     static char *block[] = {
  5.        "q_block_write() make writing arrays of character",
  6.        "strings a breeze because you do not have to  set",
  7.        "up loops to do it yourself                      ",
  8.         NULL
  9.     };
  10.     void main(void) {
  11.        vcls();
  12.        q_block_write(10,CENTER,4,0,block);
  13.     }
  14.